home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacHack 2000
/
MacHack 2000.toast
/
pc
/
The Hacks
/
Softshoe
/
Lisa's Mac Parts
/
Debug Timer
/
DebugTimer.h
< prev
Wrap
Text File
|
2000-06-23
|
308b
|
29 lines
// DebugTimer.h
#ifndef DebugTimer_h
#define DebugTimer_h
#ifndef Integers_h
#include "Integers.h"
#endif
class DebugTimer
{
private:
uint32 start;
bool running;
static uint32 Now();
public:
DebugTimer();
void Start();
void Show();
void Stop();
~DebugTimer();
};
#endif